home *** CD-ROM | disk | FTP | other *** search
- unit Mlr32reg;
-
- interface
-
- uses
- SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
- StdCtrls, Forms, ExtCtrls, Buttons, DB, DBTables, DsgnIntf, Dialogs,
- Mlrtypes, MlrForms;
-
-
- procedure Register;
-
- implementation
-
- uses Mlrtable, Mlrquery;
-
- procedure Register;
- begin
- RegisterComponents('AAS Statistics', [TMLRTable]);
- RegisterComponents('AAS Statistics', [TMLRQuery]);
- RegisterPropertyEditor(TypeInfo(TAbout),TMLRQuery,'',TMLRQAboutProperty);
- RegisterPropertyEditor(TypeInfo(TAbout),TMLRTable,'',TMLRTAboutProperty);
- RegisterPropertyEditor(TypeInfo(TIndepVar),TMLRTable,'',TMLRTControlVarProperty);
- RegisterPropertyEditor(TypeInfo(TIndepVar),TMLRQuery,'',TMLRQControlVarProperty);
- RegisterPropertyEditor(TypeInfo(TDependentVar),TMLRTable,'',TMLRTResponseVarProperty);
- RegisterPropertyEditor(TypeInfo(TDependentVar),TMLRQuery ,'',TMLRQResponseVarProperty);
- RegisterMLRUserInfo('','')
- end;
-
- end.
-